How do I remove all non alphanumeric characters from a string

399

How do I remove all non alphanumeric characters from a string? -

Regex rgx = new Regex("[^a-zA-Z0-9 -]");
str = rgx.Replace(str, "");

Comments

Submit
0 Comments